home *** CD-ROM | disk | FTP | other *** search
- Margin(10, 10, 10, 10)
- VList()
- {
- Label("Grid Settings: ", Single)
- Margin(5,5,5,5)
- VList()
- {
- HList()
- {
- Margin(2,2,2,2)
- StaticText("Horizontal: ", Width = 100, Alignment = Right);
-
- EditText(hGrid, Unsigned(16), Width = 50);
-
- Margin(2,2,2,2)
- StaticText(" Pixels");
- }
- Spacer(Height = 5);
- HList()
- {
- Margin(2,2,2,2)
- StaticText("Vertical: ", Width = 100, Alignment = Right);
-
- EditText(vGrid, Unsigned(16), Width = 50);
-
- Margin(2,2,2,2)
- StaticText(" Pixels");
- }
- }
-
- Spacer(Height = 10);
- StandardDialogButtons;
- }